home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / src / out-of-phase-102-c / OutOfPhase 1.02 Source / OutOfPhase Folder / SymbolicPitch.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-23  |  608 b   |  26 lines  |  [TEXT/KAHL]

  1. /* SymbolicPitch.h */
  2.  
  3. #ifndef Included_SymbolicPitch_h
  4. #define Included_SymbolicPitch_h
  5.  
  6. /* SymbolicPitch module depends on */
  7. /* MiscInfo.h */
  8. /* Audit */
  9. /* Debug */
  10. /* Definitions */
  11. /* Frequency */
  12. /* DataMunging */
  13. /* Memory */
  14. /* NoteObject */
  15. /* Numbers */
  16. /* SymbolicIsItInThere */
  17.  
  18. /* convert a pitch number into a heap allocated string describing it */
  19. char*                        NumericPitchToString(short Pitch, unsigned long SharpFlatThing);
  20.  
  21. /* convert the string into a pitch and sharp/flat word. */
  22. void                        StringToNumericPitch(char* String, short* Pitch,
  23.                                     unsigned long* SharpFlatThing);
  24.  
  25. #endif
  26.